home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 16
/
CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso
/
CUCD
/
Utilities
/
AddressAssist
/
Deutsch
/
Rexx
/
AddressAssist.arx
next >
Wrap
Text File
|
1997-01-29
|
684b
|
47 lines
/*
** This script shows how to obtain a list
** of an applications ARexx commands.
*/
options results
address 'ADDRESSASSIST.1'
'info title'
title = result
'info author'
author = result
'info copyright'
copyright = result
'info description'
description = result
'info version'
version = result
'info base'
base = result
say "Title......: "title
say "Author.....: "author
say "Copyright..: "copyright
say "Description: "description
say "Version....: "version
say "Basename...: "base
/* read the list into a temporary file */
'help t:_tmp'
/* type the file to stdout */
address command "type t:_tmp"
/* delete the temporary file */
address command "delete >nil: t:_tmp"